Completed
Push — master ( 474a37...c076fd )
by Konrad
06:07
created

_tooltip.js ➔ $   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
/**
2
 *    Tooltip
3
 *
4
 *    @tableofcontent
5
 *      1. Dependencies
6
 *      2. Functions
7
 *
8
 */
9
10
/**
11
 *     @section 1. Dependencies
12
 */
13
14
const tippy = require('tippy.js/dist/tippy.standalone.js');
15
16
/**
17
 *     @section 2. Functions
18
 */
19
20
$(function() {
21
    tippy('[title]', {
22
        arrow: true,
23
        arrowType: 'round',
24
        size: 'small'
25
    });
26
});
27
28
// end of _tooltip.js
29